home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / c / EGCSWOSAlib.lha / src.lha / iswhitespace.c < prev    next >
Text File  |  1998-08-02  |  264b  |  17 lines

  1. /*
  2. ** iswhitespace() - check if char is "space", "tab" or "return".
  3. **
  4. ** Made by Kasper B. Graversen (c) 1996
  5. **
  6. ** This is freeware - use at own risc.
  7. */
  8.  
  9. int iswhitespace(int c)
  10. {
  11.     if(c == '\n' || c == '\t' || c == ' ')
  12.         return(1);
  13.  
  14.     return(0);
  15. }
  16.  
  17.